max

pure function max(value: big_integer): big_integer

Returns the greater of this and another big_integer value; i.e. value if value is greater than this, or this big_integer otherwise.

Return

the greater of value and this big_integer

Since

0.12.0

Parameters

value

the value to compare against


pure function max(value: decimal): decimal

Returns the numerically greater of this big_integer a decimal value; i.e. value if value is greater than this big_integer, or this big_integer otherwise.

Return

the greater of value and this big_integer

Since

0.12.0

Parameters

value

the decimal value to compare against